From 62e77b47035471600c2c04137cc5a03d16e33529 Mon Sep 17 00:00:00 2001 From: Brian Wolff Date: Sun, 22 Nov 2015 12:29:02 -0500 Subject: [PATCH] Allow maintenance/cdb.php to look up keys with spaces in them. Change-Id: I4fd5f86706cf33345e650fac1c54d86c18207be5 --- maintenance/cdb.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/cdb.php b/maintenance/cdb.php index 2e252adb03..5aaf01f32f 100644 --- a/maintenance/cdb.php +++ b/maintenance/cdb.php @@ -61,7 +61,7 @@ do { exit; } - $args = explode( ' ', $line ); + $args = explode( ' ', $line, 2 ); $command = array_shift( $args ); // process command -- 2.20.1